home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / os2 / sets11.zip / Sets.MAK < prev    next >
Text File  |  1997-04-09  |  433b  |  22 lines

  1. # Makefile for emx 0.8 with dmake
  2. # Sets 1.1 (April 2, 1997)
  3.  
  4. GCC = gcc -Wall -O2
  5.  
  6. .SUFFIXES: .cpp .o
  7.  
  8. .cpp.o:
  9.     $(GCC) -o $*.o -c $*.cpp
  10.  
  11. SetTest: SetTest.o Sets.o
  12.     $(GCC) -o SetTest.exe SetTest.o Sets.o
  13.  
  14. SetTest.o: SetTest.cpp Sets.hpp
  15.  
  16. Sets.o : Sets.cpp Sets.hpp
  17.  
  18. # use InfoZip's zip program, and make it PK-zip compatible
  19. zip: 
  20.     zip -j -k Sets.zip SetTest.exe SetTest.CPP Sets.CPP Sets.HPP Sets.TXT Sets.MAK
  21.  
  22.